.interior_product{
    margin-top: 56px;
  }
  .interior_product h4{
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .interior_product p{
    margin-top: 11px;
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .owl-next{
    position: absolute;
    right: 0px;
  }
  .owl-prev{
    position: absolute;
    left: 0px;
  }
  .interior_product__box{
    width: 100%;
    height: max-content;
    margin-top: 21px;
    position: relative;
  }

  .interior_product__box::after{
    content: '';
    width: 164px;
    height: 100%;
    /* background-color: rebeccapurple; */
    position: absolute;
    right: -60px;
    top: 0;
    z-index: 20;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 34%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 34%, rgba(255,255,255,0) 100%);
    background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 34%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  }

  .interior_product__list{
    --nav-btn-size: 40px;
    --product-item-handle-height: 21px;
    position: relative;

  }


  .interior_product__item{
    height: max-content;
    width: 100%;
    /* width: 313px; */
    /* max-height: 340px; */
    /* margin-right: 34px; */
    /* user-select: none; */
    user-select: none; 
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
  }
  .interior_product__item_img{
    width: 100%;
    height: 300px;
  }
  .interior_product__item_img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .interior_product__item span{
    margin-top: 10px;
    font-size: 12px;
    /* line-height: var(--product-item-handle-height); */
  }

  .interior_product__list .owl-stage-outer{
    overflow: hidden;
  }

  .interior_product__list .owl-nav {
    margin: 0;
      height: 0px;
    top: calc(50% - var(--product-item-handle-height) / 2);
    position: absolute;
    width: 100%;
    display: block;
  }

  .interior_product__list .owl-stage{
    display: flex;
  }


  .interior_product__list .nav-btn {
    top: calc(-1 * var(--nav-btn-size) / 2);
    position: absolute;
    cursor: pointer;
    background: #D1D2D3;
    width: var(--nav-btn-size);
    height: var(--nav-btn-size);
    border-radius: calc(var(--nav-btn-size) / 2);
    vertical-align: middle;
    z-index: 40;
  }

  .interior_product__list .nav-btn i {
      line-height: var(--nav-btn-size);
    color: white;
  }

  .interior_product__list .prev-slide{
    left: calc(-1 * var(--nav-btn-size) / 2);
  }
  .interior_product__list .next-slide{
    right: calc(-1 * var(--nav-btn-size) / 2);
  }


  .interior_modal{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 500;

    display: none;
  }
  .interior_modal__bg{
    width: 100%;
    height: 100%;
    background-color: rgba(45, 45, 45, 0.40);
  }
  .interior_modal__content{
    width: 90%;
    max-width: 1100px;
    /* height: 90vh; */
    height: max-content;
    max-height: 90%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: white;
    border-radius: 5px;
  }

  .interior_modal__close_btn{
    position: absolute;
    top: 20px;
    right: 30px;
    color: #D1D2D3;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
  }

  .interior_modal__content_container {
    padding: 50px;
    display: flex;
    align-items: start;
    justify-content: space-between;
  }
  .interior_modal__instance {
    width: 30%;
    width: 325px;
    display: flex;
    flex-direction: column;
  }
  .interior_modal__instance img {
    width: 100%;
    margin-bottom: 20px;
  }
  .interior_modal__instance span{
    color: #D1D2D3;
    line-height: 30px;
  }
  .interior_modal__product_container{
    width: 55%;
    width: calc( 100% - 340px );
    max-height: 80vh;
    max-height: calc( 90vh - 100px );
    overflow-y: auto;
  }

  .interior_modal__product_list{
    width: 100%;
    height: max-content;
    display: flex;
    align-items: start;
    justify-content: space-around;
    flex-wrap: wrap;
  }


  .interior_modal__product_container .catalog_top__product_card {
    width: 46%;
    max-width: 300px;
    height: 320px;
    margin-bottom: 20px;
  }
  .interior_modal__product_container .product_card__img_box {
    height: 210px;
  }
  .interior_modal__product_container .product_card__images img{
    opacity: 1;
  }
  @media screen and ( max-width: 1400px ){
    .interior_product__item_img{
      height: 250px;
    }
  }
  @media screen and ( max-width: 1200px ){
    .interior_product__item_img{
      height: 200px;
    }
    .interior_product__box::after{
      right: -10px;
      width: 114px;
    }
  }
  @media screen and ( max-width: 1000px ){

    .interior_modal__content{
      max-width: 750px;
    }

    .interior_modal__instance {
      width: 210px;
    }

    .interior_modal__product_container{
      width: calc( 100% - 230px );
    }

    .interior_modal__product_container .catalog_top__product_card {
      width: 48%;
      height: 240px;
      margin-bottom: 12px;
    }
    .interior_modal__product_container .product_card__img_box {
      height: 150px;
    }

    .interior_modal__product_container .card_item__favorites {
      width: 20px;
      height: 20px;
    }


  }

  @media screen and ( max-width: 800px ){

    /* .interior_product__item_img{
      width: 100%;
      height: 300px;
    } */
    .interior_product{
      margin-top: 22px;
    }

    .interior_product p{
      margin-top: 8px;
    }

    .interior_product__box{
      margin-top: 12px;
    }

    .interior_product__item_img{
      height: 170px;
    }
    
    .interior_modal__content{
      max-width: 500px;
    }

    .interior_modal__close_btn{
      top: 10px;
      right: 14px;
      font-size: 18px;
    }

    .interior_modal__instance {
      width: 38%;
      /* width: 175px; */
    }

    .interior_product h4{
      margin-top: 20px;
    }

    .interior_product h4 {
      font-size: 1.30rem;
      line-height: 1.5rem;
    }


    .interior_modal__product_container{
      width: 58%;
    }


    .interior_modal__product_list{
      flex-direction: column;
    }


    .interior_modal__product_container .catalog_top__product_card {
      width: 100%;
      /* height: 250px; */
      height: max-content;
      /* max-width: 274px; */
      margin-bottom: 20px;
    }


    .interior_modal__content_container {
      padding: 30px;
      /* flex-direction: column; */
    }
    .interior_modal__instance span{
      margin-bottom: 8px;
    }

    .interior_modal__instance span {
      line-height: 14px;
    }


  }

  @media screen and (max-width: 600px){
    .interior_product__item_img{
      height: 235px;
    }
  }

  @media screen and (max-width: 440px){
    .interior_product__box::after{
      display: none;
    }
  }

  @media screen and (max-width: 420px){
    .interior_modal__product_container .product_card__shop_btn{
      width: 24px;
      height: 22px;
    }

    .interior_modal__close_btn{
      top: 5px;
      right: 7px;
      font-size: 14px;
    }

    .interior_modal__product_container .product_card__shop_btn img{
      width: 14px;
      height: 14px;
    }

    .interior_modal__content_container {
      padding: 30px 14px;
    }

    .interior_product__item_img{
      height: 360px;
    }
  }


  @media screen and (max-width: 402px){
    .interior_product__item_img{
      height: 275px;
    }
  }
